home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / mac / SRI / General Interest / Personal Log / Other Files ƒ / CreateLargeLogFile.txt next >
Encoding:
Text File  |  1994-06-18  |  280 b   |  11 lines  |  [TEXT/ToyS]

  1. tell application "Personal Log v1.5"
  2.     activate
  3.     repeat with i from 1 to 200
  4.         create new entry
  5.         set numStr to i as string
  6.         set entry subject to "Entry #" & numStr keywords to {"large", "file", numStr}
  7.         insert text "This is entry #" & numStr
  8.         record entry
  9.     end repeat
  10. end tell
  11.